home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Compatibles PC Magazine 22
/
PC Mag HS 22 CD2.iso
/
sharewar
/
dos
/
qpv17c
/
install.dat
/
DRVSRC
/
DRVSRC.ZIP
/
NCR.ASM
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Assembly Source File
|
1995-03-31
|
507 b
|
33 lines
;
; QPV/386 video driver
; for NCR 77C22 chipset
;
; Written by Peter van Sebille for QPV/386
;
.286
Code Segment Para 'Code'
Assume cs:Code
Org 100h
Procs dw Bank,Init,Exit,0
Bank: shl al,2
push ax
mov dx,03c4h
mov al,18h
out dx,al
inc dx
pop ax
out dx,al
retf
Init: retf
Exit: retf
Code Ends
End Procs
; End of source.